<?php if(Session::has('success_msg')): ?>
<div class="alert alert-success">
    <strong>Success!</strong> <?php echo Session::get('success_msg'); ?>

</div>
<?php endif; ?>

<?php if(Session::has('error_msg')): ?>
<div class="alert alert-danger">
    <strong>Error!</strong> <?php echo Session::get('error_msg'); ?>

</div>
<?php endif; ?>
